This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Deleting Orphans ~Bella Asaresaberggon 28.Oct.03 08:48 PM a Web browser Domino Designer 6.0.1Windows NT
on error goto errhandler
For j = 1 To dc.Count
Set doc = dc.GetNthDocument(j)
If doc.IsResponse = True Then
Set parentdoc = db.GetDocumentByUNID(doc.ParentDocumentUNID)
If (parentdoc is nothing)or (parentdoc.Responses Is Nothing) Then
Call doc.Remove(True)
End If
End If
Next j
exit sub